home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Frameworks / PennyWise™ Framework / PennyWise Application Framework / ErrorDialog.h < prev    next >
Encoding:
Text File  |  1994-08-01  |  806 b   |  26 lines  |  [TEXT/KAHL]

  1. //••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
  2. //                                                                                //
  3. //                                                                                //
  4. //                    Copyright PennyWise Software, 1994.                            //
  5. //                                                                                //
  6. //            Part of the PennyWise Software Application Framework                //
  7. //                                                                                //
  8. //                                                                                //
  9. //            ErrorDialog.h            Written by Peter Kaplan                        //
  10. //                                                                                //
  11. //                                                                                //
  12. //••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
  13. #ifndef _ERROR_DIALOG_
  14. #define _ERROR_DIALOG_
  15.  
  16. #define kSAVE_DIALOG    500
  17. #define kERROR_DIALOG    501
  18.  
  19. #define kBTTN_OK        1
  20. #define kBTTN_CANCEL    2
  21. #define kBTTN_DONT        3
  22.  
  23.     void    ErrorDialog(short theID, short theIndex, unsigned char *theOneString);
  24.     short    SaveDialog(unsigned char * theString);
  25.     
  26. #endif